home *** CD-ROM | disk | FTP | other *** search
/ c't freeware shareware 1999 February / CT_SW9902.ISO / mac / software / wissen / daten / gnuplot.hqx / gnuplot.2.0b4 / Interapplication / C Examples / HelloWorld.c < prev    next >
C/C++ Source or Header  |  1997-05-22  |  724b  |  26 lines

  1. /*
  2.  *  Hello World for the CodeWarrior
  3.  *  © 1996 Metrowerks Corp.
  4.  *
  5.  *  Questions and comments to:
  6.  *       support@metrowerks.com
  7.  *       http://www.metrowerks.com
  8.  */
  9.  
  10. #include <stdio.h>
  11. #include <stdlib.h>
  12. #include <time.h>
  13.  
  14. void main(void)
  15. {
  16.     printf ("Hello World, this is CodeWarrior!\n\n");
  17.  
  18.     srand(time(NULL));    
  19.     printf ("This project uses the SIOUX console library: choose 'Quit' from the file menu to quit.\n\n");
  20.     printf ("For more information on the ANSI C library and the Metrowerks additions, ");
  21.     printf ("including SIOUX, see the C Library Reference in the Metrowerks Documentation folder.\n\n");
  22.     
  23.     printf ("To locate the right ANSI library for your preferences, see the CodeWarrior User's Guide.\n");
  24. }
  25.  
  26.